home *** CD-ROM | disk | FTP | other *** search
/ Mastering Web Site Development / Microsoft Mastering Web Site Development (Microsoft) (1997).iso / Media / Ch04 / W04D100.cc2 < prev    next >
Text File  |  1997-04-24  |  2KB  |  37 lines

  1. 0, In this demonstration, you will see how to use the 
  2. 4, FrontPage Editor to add an ActiveX control to a 
  3. 7, Web page. Open the file where you want to insert the 
  4. 10, control with the FrontPage Editor. In the 
  5. 17, FrontPage Editor, select where you want to insert the 
  6. 20, control and select Insert, Other Components, ActiveX 
  7. 25, Control. In the ActiveX Control Properties dialog 
  8. 29, select the control that you want to insert from 
  9. 31, the Pick a Control list box. For example, Calendar 
  10. 35, Control. Set a name for the control in the Name 
  11. 39, text box. For example, ShipDate. This adds the ID 
  12. 44, attribute to the <OBJECT> tag. Set the code source 
  13. 48, for the control in the Code Source text box. This 
  14. 55, sets the CodeBase attribute to the <OBJECT> tag. If 
  15. 59, you want, you can specify HTML that will be 
  16. 63, displayed by browsers that don't support the <OBJECT> 
  17. 65, tag. Enter that HTML in this HTML text box. Then, 
  18. 72, click the Properties button to enter properties 
  19. 75, specific to the control you're inserting. You can 
  20. 79, resize the control in the Control Editor, and move it 
  21. 83, around where you want it to be placed on the page. 
  22. 87, You can set properties in the Properties dialog. 
  23. 90, For example, you can set ShowTitle to be False. 
  24. 96, When you have the control the way you want it to 
  25. 97, look, select OK. Then close the ActiveX Control 
  26. 103, Properties dialog. After you've inserted the ActiveX 
  27. 107, control, you can re-edit the properties by 
  28. 110, right-clicking on the control and selecting ActiveX Control 
  29. 113, Properties. This brings up the ActiveX Control 
  30. 116, Properties dialog and you can change any of the 
  31. 119, properties that you previously set. Let's save this 
  32. 123, page and see what it looks like in the Internet 
  33. 126, Explorer, by selecting Preview in Browser. So, now 
  34. 133, that you've added the ActiveX Calendar control to the 
  35. 135, page you can add script code to run when the user 
  36. 138, selects a date in the control.
  37. 141, END